home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 40 / Amiga Format CD40 (1999-05-11)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-06].iso / -seriously_amiga- / misc / voimariini / install next >
Text File  |  1999-03-29  |  1KB  |  70 lines

  1. (set #dirname       "Voimariini")
  2.  
  3. (if (= @language "suomi")
  4.     (
  5.     (set #destdir-prompt "Minne haluat asentaa ohjelman? Uusi hakemisto luodaan nimellä 'Voimariini'.")
  6.     (set #catchoice-prompt "Mitkä kielet haluat asentaa?")
  7.     )
  8.  
  9. ;       English
  10.  
  11.     (
  12.     (set #destdir-prompt "Where should Voimariini be installed? A drawer named 'Voimariini' will be created there.")
  13.     (set #catchoice-prompt "Which languages do you want to install?")
  14.     )
  15. )
  16.  
  17. (set @default-dest
  18.     (askdir
  19.         (prompt #destdir-prompt)
  20.         (help @makedir-help)
  21.         (disk)
  22.         (default "")
  23.         (newpath)
  24.     )
  25. )
  26.  
  27. (set @default-dest
  28.     (tackon @default-dest #dirname)
  29. )
  30. (set #catalogs
  31.     (tackon @default-dest "Catalogs")
  32. )
  33.  
  34. (makedir @default-dest
  35.     (infos)
  36. )
  37.  
  38. (complete 20)
  39.  
  40. (copyfiles
  41.     (source "")
  42.     (dest   @default-dest)
  43.     (pattern "Voimariini#?")
  44. )
  45.  
  46. (complete 40)
  47.  
  48. (makedir #catalogs)
  49.  
  50. (copyfiles
  51.     (prompt #catchoice-prompt)
  52.     (help   @askchoice-help)
  53.     (source "Catalogs")
  54.     (dest   #catalogs)
  55.     (choices "Deutsch")
  56.     (nogauge)
  57.     (confirm)
  58. )
  59.  
  60. (complete 80)
  61.  
  62. (copyfiles
  63.     (source "")
  64.     (dest   @default-dest)
  65.     (pattern "Images")
  66.     (nogauge)
  67. )
  68.  
  69. (complete 100)
  70.